home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 December / 2004-12 CHIP.iso / CHIP / Porady / Srodowisko PHP-MySQL / WAMP5 1.3 / wamp5_1.3.exe / {app} / www / phpmyadmin / queryframe.php < prev    next >
PHP Script  |  2004-09-24  |  17KB  |  427 lines

  1. <?php
  2. /* $Id: queryframe.php,v 2.17 2004/09/16 23:36:54 lem9 Exp $ */
  3. // vim: expandtab sw=4 ts=4 sts=4:
  4.  
  5. /**
  6.  * Gets the variables sent to this script, retains the db name that may have
  7.  * been defined as startup option and include a core library
  8.  */
  9. require_once('./libraries/grab_globals.lib.php');
  10. if (!empty($db)) {
  11.     $db_start = $db;
  12. }
  13.  
  14.  
  15. /**
  16.  * Gets a core script and starts output buffering work
  17.  */
  18. require_once('./libraries/common.lib.php');
  19. require_once('./libraries/bookmark.lib.php');
  20. require_once('./libraries/ob.lib.php');
  21. if ($cfg['OBGzip']) {
  22.     $ob_mode = PMA_outBufferModeGet();
  23.     if ($ob_mode) {
  24.         PMA_outBufferPre($ob_mode);
  25.     }
  26. }
  27.  
  28. // garvin: For re-usability, moved http-headers
  29. // to a seperate file. It can now be included by header.inc.php,
  30. // queryframe.php, querywindow.php.
  31.  
  32. require_once('./libraries/header_http.inc.php');
  33.  
  34. /**
  35.  * Displays the frame
  36.  */
  37. // Gets the font sizes to use
  38. PMA_setFontSizes();
  39.  
  40. /**
  41.  * Relations
  42.  */
  43. require_once('./libraries/relation.lib.php');
  44. $cfgRelation = PMA_getRelationsParam();
  45. echo "<?xml version=\"1.0\" encoding=\"" . $GLOBALS['charset'] . "\"?".">"; // remove vertical scroll bar bug in ie
  46. ?>
  47. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  48.     "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  49. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $available_languages[$lang][2]; ?>" lang="<?php echo $available_languages[$lang][2]; ?>" dir="<?php echo $text_dir; ?>">
  50.  
  51. <head>
  52. <title>phpMyAdmin</title>
  53. <meta http-equiv="Content-Type" content="text/html; charset=<?php echo $charset; ?>" />
  54. <base<?php if (!empty($cfg['PmaAbsoluteUri'])) echo ' href="' . $cfg['PmaAbsoluteUri'] . '"'; ?> />
  55. <link rel="stylesheet" type="text/css" href="./css/phpmyadmin.css.php?lang=<?php echo $lang; ?>&js_frame=left&num_dbs=0" />
  56. <?php
  57. if ($cfg['QueryFrame'] && $cfg['QueryFrameJS']) {
  58. ?>
  59. <script type="text/javascript" language="javascript">
  60. <!--
  61. var querywindow = '';
  62.  
  63. function open_querywindow(url) {
  64.  
  65.     if (!querywindow.closed && querywindow.location) {
  66.         querywindow.focus();
  67.     } else {
  68.         querywindow=window.open(url + '&db=' + document.queryframeform.db.value + '&table=' + document.queryframeform.table.value, '','toolbar=0,location=0,directories=0,status=1,menubar=0,scrollbars=yes,resizable=yes,width=<?php echo $cfg['QueryWindowWidth']; ?>,height=<?php echo $cfg['QueryWindowHeight']; ?>');
  69.     }
  70.  
  71.     if (!querywindow.opener) {
  72.         querywindow.opener = self;
  73.     }
  74.  
  75.     if (window.focus) {
  76.         querywindow.focus();
  77.     }
  78.  
  79.     return false;
  80. }
  81.  
  82. /**
  83.   * function resizeRowsLeft()
  84.   * added 2004-07-20 by Michael Keck <mail@michaelkeck.de>
  85.   *                  - this function checks the complete frameset of
  86.   *                    index.php (parent.frames)
  87.   *                  - gets the offsetHeight of qfcontainer
  88.   *                  - sets a new frameset.rows - definition for the
  89.   *                    frameset 'leftFrameset' in 'index.php' dynamic.
  90.   * this script was tested on
  91.   *   IE 6, Opera 7.53, Netsacpe 7.1 and Firefox 0.9
  92.   *   and should work on all other DOM-Browsers and old IE-Browsers.
  93.   *   It will never work on Netscape smaller Version 6 and IE smaller Version 4.
  94.   * Please give me feedback if any browser doesn't work with this script
  95.   *   mailto:mail@michaelkeck.de?subject=resizeFrames - Browser: [the browser]
  96. **/
  97.  
  98. function resizeRowsLeft() {
  99.     if (document.getElementById('qfcontainer')) { // dom browsers
  100.         // get the height of the div-element 'qfcontainer'
  101.         // we must add 10 (px) for framespacing
  102.         newHeight = document.getElementById('qfcontainer').offsetHeight+10;
  103.         // check if the frameset exists
  104.         // please see index.php and check the frameset-definitions
  105.         if (parent.document.getElementById('mainFrameset') && parent.document.getElementById('leftFrameset')) {
  106.             parent.document.getElementById('leftFrameset').rows=newHeight+',*';
  107.         }
  108.     } else {
  109.         if (document.all) { // older ie-browsers
  110.             // get the height of the div-element 'qfcontainer'
  111.             // we must add 10 (px) for framespacing
  112.             newHeight=document.all('qfcontainer').offsetHeight+10;
  113.             // check if the frameset exists
  114.             // please see index.php and check the frameset-definitions
  115.             if (parent.leftFrameset) {
  116.                 parent.leftFrameset.rows=newHeight+',*';
  117.             }
  118.         }
  119.     }
  120. }
  121.  
  122. // added 2004-09-16 by Michael Keck (mkkeck)
  123. //                  bug: #1027321
  124. //                       drop-down databases list keep focus on database change
  125. var focus_removed = false;
  126. function remove_focus_select() {
  127.     focus_removed = false;
  128.     set_focus_to_nav();
  129. }
  130. function set_focus_to_nav() {
  131.     if (typeof(parent.frames.nav)!='undefined' && focus_removed!=true) {
  132.         parent.frames.nav.focus();
  133.         focus_removed=true;
  134.     } else {
  135.         focus_removed=false;
  136.         setTimeout("set_focus_to_nav();",500);
  137.     }
  138. }
  139. //-->
  140. </script>
  141. <?php
  142.     // setup the onload handler for resizing frames
  143.     $js_frame_onload=' onload="resizeRowsLeft();"';
  144. }
  145. ?>
  146. </head>
  147.  
  148. <body bgcolor="<?php echo $cfg['LeftBgColor']; ?>"<?php echo ((isset($js_frame_onload) && $js_frame_onload!='') ? $js_frame_onload : ''); ?>>
  149.     <div id="qfcontainer">
  150. <?php
  151. if ($cfg['LeftDisplayLogo']) {
  152. ?>
  153. <!-- phpMyAdmin logo -->
  154.     <?php
  155.     if (@file_exists($pmaThemeImage . 'logo_left.png')) {
  156.     ?>
  157.     
  158.     <div align="center">
  159.         <a href="http://www.phpmyadmin.net" target="_blank"><img src="<?php echo '' . $pmaThemeImage . 'logo_left.png'; ?>" alt="phpMyAdmin" vspace="3" border="0" /></a>
  160.     </div>
  161.     <?php
  162.     } else {
  163.         echo '    '
  164.            . '<div align="center"><a href="http://www.phpmyadmin.net" target="_blank">'
  165.            . '<img src="' . $GLOBALS['pmaThemeImage'] . 'pma_logo2.png'  .'" alt="phpMyAdmin" border="0" />'
  166.            . '</a></div>' . "\n";
  167.     }
  168.     echo '<hr />';
  169. } // end of display logo
  170.  
  171. if ($cfg['MainPageIconic']) {
  172.     $str_spacer_links='';
  173. } else{
  174.     $str_spacer_links=' - ';
  175. }
  176.     ?>
  177. <!-- Link to the welcome page -->
  178.     <div align="center">
  179. <?php
  180.     echo '<a class="item" href="main.php?' . PMA_generate_common_url() . '" target="phpmain' . $hash . '">'
  181.        . ($cfg['MainPageIconic']
  182.             ? '<img src="' . $pmaThemeImage . 'b_home.png" width="16" height="16" border="0" hspace="2" alt="' . $strHome . '" title="' . $strHome . '"'
  183.                     .' onmouseover="this.style.backgroundColor=\'#ffffff\';" onmouseout="this.style.backgroundColor=\'\';" align="middle" />'
  184.             : '<b>' . $strHome . '</b>')
  185.         . '</a>';
  186.     // Logout for advanced authentication
  187.     if ($cfg['Server']['auth_type'] != 'config') {
  188.         echo $str_spacer_links;
  189.         echo '<a class="item" href="index.php?' . PMA_generate_common_url() . '&old_usr=' . urlencode($PHP_AUTH_USER) . '" target="_parent">'
  190.            . ($cfg['MainPageIconic']
  191.                 ? '<img src="' . $pmaThemeImage . 's_loggoff.png" width="16" height="16" border="0" hspace="2" alt="' . $strLogout . '" title="' . $strLogout . '"'
  192.                         .' onmouseover="this.style.backgroundColor=\'#ffffff\';" onmouseout="this.style.backgroundColor=\'\';" align="middle" />'
  193.                 : '<b>' . $strLogout . '</b>')
  194.            . '</a>';
  195.     } // end if
  196.  
  197. $anchor = 'querywindow.php?' . PMA_generate_common_url('', '');
  198. if ($cfg['QueryFrameJS']) {
  199.     $href = $anchor;
  200.     $target = '';
  201.     $onclick = 'onclick="javascript:open_querywindow(this.href); return false;"';
  202. } else {
  203.     $href = $anchor;
  204.     $target = 'target="phpmain' . $hash . '"';
  205.     $onclick = '';
  206. }
  207. if ($cfg['MainPageIconic']) {
  208.     $query_frame_link_text = '<img src="' . $pmaThemeImage . 'b_selboard.png" border="0" hspace="1" width="16" height="16" alt="' . $strQueryFrame . '" title="' . $strQueryFrame . '"'
  209.                            .' onmouseover="this.style.backgroundColor=\'#ffffff\';" onmouseout="this.style.backgroundColor=\'\';" align="middle" />';
  210. } else {
  211.     echo ($str_spacer_links != '' ? '<br />' : '');
  212.     $query_frame_link_text = '<b>' . $strQueryFrame . '</b>';
  213. }
  214.     ?>
  215.     <script type="text/javascript">
  216.     <!--
  217.     document.writeln('<a href="<?php echo $href; ?>" <?php echo $target . ' ' . $onclick; ?> class="item"><?php echo addslashes($query_frame_link_text); ?></a>');
  218.     //-->
  219.     </script>
  220.     <noscript>
  221.         <a href="<?php echo $href; ?>&no_js=true" <?php echo $target . ' ' . $onclick; ?> target="phpmain<?php echo $hash; ?>" class="item"><?php echo $query_frame_link_text; ?></a>
  222.     </noscript>
  223.     <?php
  224.  
  225. if ($cfg['MainPageIconic']) {
  226.     echo '<img src="' .$GLOBALS['pmaThemeImage'] . 'spacer.png'  .'" width="2" height="1" border="0" alt="" />'
  227.        . '<a href="Documentation.html" target="documentation" class="item">'
  228.        . '<img src="' . $pmaThemeImage . 'b_docs.png" border="0" hspace="1" width="16" height="16" alt="' . $strPmaDocumentation . '" title="' . $strPmaDocumentation . '"'
  229.        . ' onmouseover="this.style.backgroundColor=\'#ffffff\';" onmouseout="this.style.backgroundColor=\'\';" align="middle" />'
  230.        . '</a>';
  231.     echo ''
  232.        . '<a href="' . $cfg['MySQLManualBase'] . '" target="documentation" class="item">'
  233.        . '<img src="' . $pmaThemeImage . 'b_sqlhelp.png" border="0" hspace="1" width="16" height="16" alt="MySQL - ' . $strDocu . '" title="MySQL - ' . $strDocu . '"'
  234.        .' onmouseover="this.style.backgroundColor=\'#ffffff\';" onmouseout="this.style.backgroundColor=\'\';" align="middle" />'
  235.        . '</a>';
  236. }
  237.  
  238.     ?>
  239.     </div>
  240.     <hr />
  241.  
  242.     <?php
  243. if ($cfg['LeftDisplayServers']){
  244.     $show_server_left = TRUE;
  245.     include('./libraries/select_server.lib.php');
  246. } // end if LeftDisplayServers
  247.     ?>
  248. <!-- Databases list -->
  249.     <?php
  250. /**
  251.  * Get the list and number of available databases.
  252.  * Skipped if no server selected: in this case no database should be displayed
  253.  * before the user choose among available ones at the welcome screen.
  254.  */
  255. if ($server > 0) {
  256.     PMA_availableDatabases(); // this function is defined in "common.lib.php"
  257. } else {
  258.     $num_dbs = 0;
  259. }
  260.  
  261. // Don't display expansible/collapsible database info if:
  262. // 1. $server == 0 (no server selected)
  263. //    This is the case when there are multiple servers and
  264. //    '$cfg['ServerDefault'] = 0' is set. In that case, we want the welcome
  265. //    screen to appear with no database info displayed.
  266. // 2. there is only one database available (ie either only one database exists
  267. //    or $cfg['Servers']['only_db'] is defined and is not an array)
  268. //    In this case, the database should not be collapsible/expandable
  269. if ($num_dbs > 1) {
  270.     // Light mode -> beginning of the select combo for databases
  271.     // Note: When javascript is active, the frameset will be changed from
  272.     // within left.php. With no JS (<noscript>) the whole frameset will
  273.     // be rebuilt with the new target frame.
  274.     if ($cfg['LeftFrameLight']) {
  275.     ?>
  276.     <table border="0" cellpadding="1" cellspacing="0">
  277.         <tr>
  278.             <td align="left" class="heada"><?php echo $strDatabase; ?>:</td>
  279.         </tr>
  280.         <tr>
  281.             <td nowrap="nowrap">
  282.     <script type="text/javascript" language="javascript">
  283.     <!--
  284.         document.writeln('<form method="post" action="left.php" name="left" target="nav" style="margin: 0px; padding: 0px;">');
  285.     //-->
  286.     </script>
  287.     <noscript>
  288.         <form method="post" action="index.php" name="left" target="_parent" style="margin: 0px; padding: 0px;">
  289.     </noscript>
  290.     <?php
  291.         echo PMA_generate_common_hidden_inputs();
  292.         echo '        <input type="hidden" name="hash" value="' . $hash . '" />' . "\n";
  293.         ?>
  294.         <select name="lightm_db" onchange="remove_focus_select();this.form.submit();">
  295.         <?php
  296.         echo '            <option value="">(' . $strDatabases . ') ...</option>' . "\n";
  297.         $table_list = '';
  298.         $table_list_header = '';
  299.         $db_name    = '';
  300.         $selected_db = 0;
  301.  
  302.         // natural order for db list
  303.         if ($cfg['NaturalOrder'] && $num_dbs > 0) {
  304.             $dblist_temp = $dblist;
  305.             natsort($dblist_temp);
  306.             $i = 0;
  307.             foreach ($dblist_temp as $each) {
  308.                 $dblist[$i] = $each;
  309.                 $i++;
  310.             }
  311.         }
  312.  
  313.         // Gets the tables list per database
  314.         for ($i = 0; $i < $num_dbs; $i++) {
  315.             $db = $dblist[$i];
  316.             $j  = $i + 2;
  317.             if (!empty($db_start) && $db == $db_start) {
  318.                 $selected_db = $j;
  319.             }
  320.             $tables              = PMA_DBI_try_query('SHOW TABLES FROM ' . PMA_backquote($db) . ';', NULL, PMA_DBI_QUERY_STORE);
  321.             $num_tables          = ($tables) ? @PMA_DBI_num_rows($tables) : 0;
  322.             $common_url_query    = PMA_generate_common_url($db);
  323.             if ($num_tables) {
  324.                 $num_tables_disp = $num_tables;
  325.             } else {
  326.                 $num_tables_disp = '-';
  327.             }
  328.             // Get additional information about tables for tooltip
  329.             if ($cfg['ShowTooltip'] && PMA_MYSQL_INT_VERSION >= 32303
  330.                 && $num_tables
  331.                 && (!$cfg['LeftFrameLight'] || $selected_db == $j)) {
  332.                 $tooltip = array();
  333.                 $tooltip_name = array();
  334.                 $result  = PMA_DBI_try_query('SHOW TABLE STATUS FROM ' . PMA_backquote($db));
  335.                 while ($tmp = PMA_DBI_fetch_assoc($result)) {
  336.                     $tooltip_name[$tmp['Name']] = (!empty($tmp['Comment']) ? $tmp['Comment'] . ' ' : '');
  337.                     $tmp['Comment'] = ($cfg['ShowTooltipAliasTB'] && $cfg['ShowTooltipAliasTB'] !== 'nested' ? $tmp['Name'] : $tmp['Comment']);
  338.                     $tooltip[$tmp['Name']] = (!empty($tmp['Comment']) ? $tmp['Comment'] . ' ' : '')
  339.                                            . '(' . (isset($tmp['Rows']) ? $tmp['Rows'] : '0') . ' ' . $strRows . ')';
  340.                 } // end while
  341.             } // end if
  342.  
  343.             // garvin: Get comments from PMA comments table
  344.             $db_tooltip = '';
  345.             if ($cfg['ShowTooltip'] && $cfgRelation['commwork']) {
  346.                 $tmp_db_tooltip = PMA_getComments($db);
  347.                 if (is_array($tmp_db_tooltip)) {
  348.                     $db_tooltip = implode(' ', $tmp_db_tooltip);
  349.                 }
  350.             }
  351.  
  352.             // Builds the databases' names list
  353.             if (!empty($db_start) && $db == $db_start) {
  354.                 $table_title = array();
  355.                 $table_array = array();
  356.                 // Gets the list of tables from the current database
  357.                 while (list($table) = PMA_DBI_fetch_row($tables)) {
  358.                     $table_array[$table] = '';
  359.                     $url_title  = (!empty($tooltip) && isset($tooltip[$table]))
  360.                                 ? htmlspecialchars($tooltip[$table])
  361.                                 : '';
  362.                     $alias = (!empty($tooltip_name) && isset($tooltip_name[$table]))
  363.                                 ? htmlspecialchars($tooltip_name[$table])
  364.                                 : '';
  365.                     $book_sql_query = PMA_queryBookmarks($db, $cfg['Bookmark'], '\'' . PMA_sqlAddslashes($table) . '\'', 'label');
  366.                 } // end while (tables list)
  367.                 $selected = ' selected="selected"';
  368.             } else {
  369.                 $selected = '';
  370.             } // end if... else...
  371.  
  372.             if (!empty($num_tables)) {
  373.                 echo '            '
  374.                    . '<option value="' . htmlspecialchars($db) . '"' . $selected . '>' 
  375.                    . ($db_tooltip != '' && $cfg['ShowTooltipAliasDB'] ? htmlspecialchars($db_tooltip) : htmlspecialchars($db)) . ' (' . $num_tables . ')</option>' . "\n";
  376.             } else {
  377.                 echo '            '
  378.                    . '<option value="' . htmlspecialchars($db) . '"' . $selected . '>'
  379.                    . ($db_tooltip != '' && $cfg['ShowTooltipAliasDB'] ? htmlspecialchars($db_tooltip) : htmlspecialchars($db)) . ' (-)</option>' . "\n";
  380.             } // end if... else...
  381.  
  382.         } // end for $i (db list)
  383.         ?>
  384.         </select>
  385.         <noscript><input type="submit" name="Go" value="<?php echo $strGo; ?>" /></noscript>
  386.     </form>
  387.             </td>
  388.         </tr>
  389.     </table>
  390.     <hr />
  391.     <?php
  392.     } // end if LeftFrameLight
  393. } // end if num_db > 1
  394.     ?>
  395.     <form name="queryframeform" action="queryframe.php" method="get" style="margin:0px; padding:0px; display:none;">
  396.         <input type="hidden" name="db" value="" />
  397.         <input type="hidden" name="table" value="" />
  398.         <input type="hidden" name="framename" value="queryframe" />
  399.     </form>
  400.     <form name="hashform" action="queryframe.php" style="margin:0px; padding:0px; display:none;">
  401.         <input type="hidden" name="hash" value="<?php echo $hash; ?>" />
  402.     </form>
  403.     </div>
  404. </body>
  405. </html>
  406.  
  407. <?php
  408. /**
  409.  * Close MySql connections
  410.  */
  411. if (isset($dbh) && $dbh) {
  412.     @PMA_DBI_close($dbh);
  413. }
  414. if (isset($userlink) && $userlink) {
  415.     @PMA_DBI_close($userlink);
  416. }
  417.  
  418.  
  419. /**
  420.  * Sends bufferized data
  421.  */
  422. if (isset($cfg['OBGzip']) && $cfg['OBGzip']
  423.     && isset($ob_mode) && $ob_mode) {
  424.      PMA_outBufferPost($ob_mode);
  425. }
  426. ?>
  427.